body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #f8faff;
  color: #333;
}

.hero-it-center {
  position: relative;
  width: 100%;
  height: 90vh;
  background: url("./Assets/hero-it-background.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 30, 60, 0.65); /* soft blue overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.hero-text {
  max-width: 800px;
  z-index: 2;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #e6e6e6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #007bff;
}

/* Responsive design */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


/* ===== MAIN SECTION ===== */
.it-section {
  width: 100%;
  padding: 60px 5%;
  max-width: 1300px;
  margin: auto;
}

.it-section h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 60px;
}

/* ===== ITEM STRUCTURE ===== */
.it-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
  flex-wrap: wrap;
}

/* Reverse Layout */
.it-item.reverse {
  flex-direction: row-reverse;
}

/* ===== IMAGE ===== */
.it-img {
  flex: 1 1 45%;
}

.it-img img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.it-img img:hover {
  transform: scale(1.05);
}

/* ===== CONTENT ===== */
.it-content {
  flex: 1 1 50%;
}

.it-content h2 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 10px;
}

.it-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .it-item {
    flex-direction: column;
    text-align: center;
  }

  .it-item.reverse {
    flex-direction: column;
  }

  .it-content {
    order: 2;
  }

  .it-img {
    order: 1;
  }

  .it-section h1 {
    font-size: 2rem;
  }

  .it-content h2 {
    font-size: 1.5rem;
  }
}
